home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / STRUCT2.C < prev    next >
Text File  |  1996-07-05  |  592b  |  26 lines

  1. main()
  2. {
  3. struct {
  4.    char bas_harf;
  5.    int yas;
  6.    int not;
  7.    } cocuklar[12];
  8.  
  9. int indeks;
  10.  
  11.    for (indeks = 0;indeks < 12;indeks++) {
  12.       cocuklar[indeks].bas_harf = 'A' + indeks;
  13.       cocuklar[indeks].yas = 16;
  14.       cocuklar[indeks].not = 84;
  15.    }
  16.  
  17.    cocuklar[3].yas = cocuklar[5].yas = 17;
  18.    cocuklar[2].not = cocuklar[6].not = 92;
  19.    cocuklar[4].not = 57;
  20.  
  21.    for (indeks = 0;indeks < 12;indeks++)
  22.       printf("%c is %d years old and got a not of %d\n",
  23.              cocuklar[indeks].bas_harf, cocuklar[indeks].yas,
  24.              cocuklar[indeks].not);
  25. }
  26.